func net/http.http2asciiEqualFold
19 uses
net/http (current package)
h2_bundle.go#L62: func http2asciiEqualFold(s, t string) bool {
h2_bundle.go#L6897: if http2asciiEqualFold(k, "content-length") ||
h2_bundle.go#L6898: http2asciiEqualFold(k, "content-encoding") ||
h2_bundle.go#L6899: http2asciiEqualFold(k, "trailer") ||
h2_bundle.go#L6900: http2asciiEqualFold(k, "te") ||
h2_bundle.go#L6901: http2asciiEqualFold(k, "expect") ||
h2_bundle.go#L6902: http2asciiEqualFold(k, "host") {
h2_bundle.go#L8271: if vv := req.Header["Connection"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && !http2asciiEqualFold(vv[0], "close") && !http2asciiEqualFold(vv[0], "keep-alive")) {
h2_bundle.go#L9016: if http2asciiEqualFold(k, "host") || http2asciiEqualFold(k, "content-length") {
h2_bundle.go#L9020: } else if http2asciiEqualFold(k, "connection") ||
h2_bundle.go#L9021: http2asciiEqualFold(k, "proxy-connection") ||
h2_bundle.go#L9022: http2asciiEqualFold(k, "transfer-encoding") ||
h2_bundle.go#L9023: http2asciiEqualFold(k, "upgrade") ||
h2_bundle.go#L9024: http2asciiEqualFold(k, "keep-alive") {
h2_bundle.go#L9030: } else if http2asciiEqualFold(k, "user-agent") {
h2_bundle.go#L9043: } else if http2asciiEqualFold(k, "cookie") {
h2_bundle.go#L9571: if cs.requestedGzip && http2asciiEqualFold(res.Header.Get("Content-Encoding"), "gzip") {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |